home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- repeat with n = 4 to 6
- set the visible of sprite n to 0
- end repeat
- repeat with n = 8 to 9
- set the visible of sprite n to 0
- end repeat
- end
-
- on menu
- if rollOver(7) then
- set the visible of sprite 4 to 1
- repeat with n = 8 to 9
- set the visible of sprite n to 1
- end repeat
- else
- if (the mouseCast <> 9) and (the mouseCast <> 10) and (the mouseCast <> 11) and (the mouseCast <> 7) then
- set the visible of sprite 4 to 0
- end if
- end if
- repeat with n = 8 to 9
- if the visible of sprite 4 = 1 then
- if rollOver(n) then
- set the visible of sprite (n - 3) to 1
- next repeat
- end if
- set the visible of sprite (n - 3) to 0
- end if
- end repeat
- end
-